home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / UNIX.ZIP / VMSCRACK / MAKEFILE.ZT3 < prev    next >
Encoding:
Text File  |  1996-11-14  |  913 b   |  40 lines

  1. #****************************************************************************#
  2. #                                                                            #
  3. # Make file for ZORTECH C/C++ 32 Bit                                         #
  4. #                                                                            #
  5. #****************************************************************************#
  6.  
  7. #name the compiler
  8.  
  9. CC     = ztc
  10. CFLAGS = -A -bx -w1 -a2 -o+time -mx -3
  11.  
  12. #linker
  13.  
  14. LINK   = blinkx
  15. LNKOPT =
  16.  
  17. #directory ZORTECH
  18.  
  19. ztd    = c:\zt
  20.  
  21. #implicit rules
  22.  
  23. .c.obj :
  24.     $(CC) -c $(CFLAGS) $*
  25.  
  26. #executable files
  27.  
  28. all: vmsc.exe
  29.  
  30. # explicit rules
  31.  
  32. vmsc.exe : vmsc.obj getopt.obj hpwd.obj
  33.     $(LINK) $(LNKOPT) $(ztd)\lib\cx.obj+vmsc.obj+getopt.obj+hpwd.obj,vmsc.exe;
  34.  
  35. vmsc.obj : vmsc.c mytypes.h getopt.h sysuaf.h hpwd.h
  36.  
  37. getopt.obj : getopt.c
  38.  
  39. hpwd.obj : hpwd.c hpwd.h mytypes.h
  40.